home *** CD-ROM | disk | FTP | other *** search
/ 17 Bit Software 6: Level 6 / 17 Bit - Level 6 (1998)(Epic Marketing)[!].iso / quartz / q1082.dms / q1082.adf / src.lzh / Fig / puterr.c < prev    next >
C/C++ Source or Header  |  1991-07-18  |  482b  |  19 lines

  1. /* 
  2.  *    FIG : Facility for Interactive Generation of figures
  3.  *
  4.  *    Copyright (c) 1985 by Supoj Sutanthavibul (supoj@sally.UTEXAS.EDU)
  5.  *    November 1985.
  6.  *
  7.  *    %W%    %G%
  8. */
  9. #include "fig.h"
  10.  
  11. /*VARARGS1*/
  12. put_err(format, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8)
  13. char   *format, *arg1, *arg2, *arg3, *arg4, *arg5, *arg6, *arg7, *arg8;
  14. {
  15.     fprintf(stderr, format, arg1, arg2, arg3, arg4, arg5, 
  16.         arg6, arg7, arg8);
  17.     put_msg(format, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8);
  18. }
  19.